home *** CD-ROM | disk | FTP | other *** search
- package
- {
- import flash.display.MovieClip;
- import flash.display.SimpleButton;
- import flash.events.Event;
-
- public class TutorialMovieClip extends MovieClip
- {
-
-
- public var TargetFrame:int;
-
- public var _bNextFrame:Button;
-
- public function TutorialMovieClip()
- {
- super();
- }
-
- public function getSkip() : SimpleButton
- {
- return getChildByName("Skip") as SimpleButton;
- }
-
- public function turnBlotterOff() : void
- {
- dispatchEvent(new Event("turnBlotterOff"));
- trace("Blotter off");
- }
-
- public function clearDressupTutorial() : void
- {
- Profile.CurrentProfile.TutorialMask |= Profile.kTutorial_DressupMask;
- Storage.getInstance().saveProfiles();
- }
-
- public function waitForUser() : void
- {
- dispatchEvent(new Event("tutorialWaitForUser"));
- trace("Wait for user");
- }
- }
- }
-